{% extends 'base_dashboard.html' %} {% block title %}{{ action|default:"Add Module" }} — Online LMS{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{{ action|default:"Add Module" }}

Organise your course content into structured modules

Back to Courses
{{ course.title }}
{% if action == 'Edit Module' %}Editing module in this course{% else %}New module will be added to this course{% endif %}
{% csrf_token %} {% if form.non_field_errors %}
{% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
{% endif %}
{{ form.title }} {% if form.title.errors %}
{{ form.title.errors|join:", " }}
{% endif %}
{{ form.order }} {% if form.order.errors %}
{{ form.order.errors|join:", " }}
{% endif %}
Modules are displayed in ascending order (0, 1, 2 …)
{% if action == 'Edit Module' %} {% else %} {% endif %} Cancel
{% endblock %}